encoding/json.scanner.error (method)
28 uses
encoding/json (current package)
scanner.go#L183: return s.error(c, "exceeded max depth")
scanner.go#L249: return s.error(c, "looking for beginning of value")
scanner.go#L274: return s.error(c, "looking for beginning of object key string")
scanner.go#L299: return s.error(c, "after object key")
scanner.go#L310: return s.error(c, "after object key:value pair")
scanner.go#L320: return s.error(c, "after array element")
scanner.go#L322: return s.error(c, "")
scanner.go#L331: s.error(c, "after top-level value")
scanner.go#L347: return s.error(c, "in string literal")
scanner.go#L362: return s.error(c, "in string escape code")
scanner.go#L372: return s.error(c, "in \\u hexadecimal character escape")
scanner.go#L382: return s.error(c, "in \\u hexadecimal character escape")
scanner.go#L392: return s.error(c, "in \\u hexadecimal character escape")
scanner.go#L402: return s.error(c, "in \\u hexadecimal character escape")
scanner.go#L415: return s.error(c, "in numeric literal")
scanner.go#L448: return s.error(c, "after decimal point in numeric literal")
scanner.go#L481: return s.error(c, "in exponent of numeric literal")
scanner.go#L500: return s.error(c, "in literal true (expecting 'r')")
scanner.go#L509: return s.error(c, "in literal true (expecting 'u')")
scanner.go#L518: return s.error(c, "in literal true (expecting 'e')")
scanner.go#L527: return s.error(c, "in literal false (expecting 'a')")
scanner.go#L536: return s.error(c, "in literal false (expecting 'l')")
scanner.go#L545: return s.error(c, "in literal false (expecting 's')")
scanner.go#L554: return s.error(c, "in literal false (expecting 'e')")
scanner.go#L563: return s.error(c, "in literal null (expecting 'u')")
scanner.go#L572: return s.error(c, "in literal null (expecting 'l')")
scanner.go#L581: return s.error(c, "in literal null (expecting 'l')")
scanner.go#L591: func (s *scanner) error(c byte, context string) int {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |